home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00053_athletelistbck.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  576 b   |  21 lines

  1. on mouseDown
  2.   global gHFpreviousline, ghfathleteno, gHFposition, ghfmaxathleteno, gHFline
  3.   set vLine to the mouseLine
  4.   if (vLine > 0) and (vLine <= ghfmaxathleteno) then
  5.     hilite line vLine of field 11
  6.     set gHFline to vLine
  7.   end if
  8.   if gHFpreviousline = vLine then
  9.     set gHFposition to vLine
  10.     put "gHFposition " & gHFposition
  11.     put "gHFmaxathleteno " & ghfmaxathleteno
  12.     if (gHFposition > 0) and (gHFposition <= ghfmaxathleteno) then
  13.       paintscreen()
  14.       go(1)
  15.     else
  16.       set gHFposition to 0
  17.     end if
  18.   end if
  19.   set gHFpreviousline to vLine
  20. end
  21.